43
Your systems. Working as one. Connext DDS Professional 5.1 Overview February 2014

Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

  • Upload
    others

  • View
    5

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Your  systems.    Working  as  one.  

Connext  DDS  Professional  5.1  Overview  

February  2014  

Page 2: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Agenda  

•  Connext  DDS  Professional  5.1  •  New  Features  and  Enhancements  •  Summary  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    2  

Page 3: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

RTI  Connext  DDS  Professional  5.1  

•  60+  new  features  and  enhancements  to  improve  – Scalability      – Performance  – Usability  – Product  Capability  

•  New  experimental  features  •  20+  new  plaWorms  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    3  

Page 4: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.  

New  Features  and  Enhancements  

 4  

Page 5: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

XTypes  -­‐  Mutable  Types  

•  MoZvaZon  for  XTypes  – Support  customer  product  life  cycle  

•  Dynamic  upgrades  for  large  and  mission-­‐criZcal  systems  

•  Allow  types  to  evolve  without  breaking  interoperability  with  applicaZons  using  different  versions    

•  Mutable  Types    – Supported  in  C,  C++,  Java  and  .NET/C#  – Supported  in  Dynamic  Data  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    5  

Page 6: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Extensible  Types  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.  

@Extensibility(Extenisble_EXTENSIBILITY)  struct  TrackData  {          long  id;  //@ID  1          long  x;    //@ID  2          long  y;    //@ID  3  };  

@Extensibility(Extensible_EXTENSIBILITY)  struct  TrackData  {          long  id;  //@ID  1          long  x;  //@ID  2          long  z;  //@ID  4          long  y;  //@ID  3  };  

@Extensibility(Extensible_EXTENSIBILITY)  struct  TrackData  {          long  id;  //@ID  1          long  x;    //@ID  2          long  y;    //@ID  3  };  

@Extensibility(Extensible_EXTENSIBILITY)  struct  TrackData  {          long  id;  //@ID  1          long  x;  //@ID  2          long  y;  //@ID  3          long  z;  //@ID  4  };  

Connext  DDS  5.0  

 6  

Page 7: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.  

@Extensibility(Mutable_EXTENSIBILITY)  struct  TrackData  {          long  id;  //@ID  1          long  x;    //@ID  2          long  y;    //@ID  3  };  

@Extensibility(Mutable_EXTENSIBILITY)  struct  TrackData  {          long  id;  //@ID  1          long  x;  //@ID  2          long  y;  //@ID  3          long  z;  //@ID  4  };  

Connext  DDS  5.1  

@Extensibility(Mutable_EXTENSIBILITY)  struct  TrackData  {          long  id;  //@ID  1          long  x;    //@ID  2          long  y;    //@ID  3  };  

@Extensibility(Mutable_EXTENSIBILITY)  struct  TrackData  {          long  id;  //@ID  1          long  x;  //@ID  2          long  z;  //@ID  4          long  y;  //@ID  3  };  

4-­‐byte  or  12-­‐byte  per  member  extra  overhead  on  the  wire.  

Mutable  Types  

 7  

Page 8: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

XTypes  -­‐  OpZonal  Members  

•  MoZvaZon  – Support  scenarios  in  which  data  type  member  value  is  not  known  or  does  not  exist  

 •  Specific  

– Supported  in  C,  C++  and  Java  – Supported  in  Dynamic  Data    

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    8  

Page 9: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

OpZonal  Members    

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.  

@Extensibility(MUTABLE_EXTENSIBILITY)  struct  TrackData  {          long  id;            long  x;              long  y;              long  z;    //@OpZonal  };  

typedef  struct  TrackData  {          DDS_Long  id;          DDS_Long  x;          DDS_Long  y;          DDS_Long  *  z;  };  

NULL  value  means  there  is  no  value  because  logically  the  value  is  not  there  

C/C++  

Bandwidth  overhead  per  member  FINAL/EXTENSIBLE   MUTABLE  

SET   4/12-­‐byte  HEADER  +  VALUE   4/12-­‐byte  HEADER  +  VALUE  

NOT  SET   4/12-­‐byte  HEADER   0-­‐byte  

 9  

Page 10: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

BuilZn  QoS  Profile    

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.  

•  MoZvaZon  –  Facilitate  configuraZon  of  the  product  for  common  scenario  and  use  

cases  –  Reduce  configuraZon  effort  for  senng  individual  QoS  parameters  –  Communicate  how  to  use  new  features  or  QoS  in  a  use  case  –  Increase  accessibility  of  new  capabiliZes  and  features  

•  Specific  –  Total  of  34  QoS  Profiles  as  part  of  the  core  library  –  Can  be  extended  and  expanded  as  new  features  developed  and  new  

use  cases  idenZfied  

 10  

Page 11: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

BuilZn  QoS  Profiles  

BASELINE_  ROOT  

BASELINE_  5_0_0  

BASELINE  

BASELINE_  5_1_0  

GENERIC_  COMMON  

GENERIC_  MONITORING  

GENERIC__  CONNEXT_MICRO_COMPATIBILITY  

GENERIC_  CONNEXT_OTHER  DDS_VENDOR_  COMPATIBILITY  

Baseline   Generic  

PERIODIC_DATA  

RELIABLE_  STREAMING  

STREAMING  

EVENT  

STATUS  

ALARM_EVENT  

ALARM_STATUS  

LAST_VALUE_  CACHE  

PaFern  

Experimental  

KEEP_LAST_RELIABLE_  TRANSIENT_LOCAL  

KEEP_LAST_RELIABLE_  TRANSIENT  

KEEP_LAST_RELIABLE_  PERSISTENT  

STRICT_RELIABLE_LARGE_  DATA_FAST_FLOW  

STRICT_RELIABLE_LARGE_  DATA_MEDIUM_FLOW  

STRICT_RELIABLE_LARGE_  DATA_SLOW_FLOW  

KEEP_LAST_RELIABLE_  LARGE_DATA_FAST_FLO

W  

KEEP_LAST_RELIABLE_LARGE_DATA_MEDIUM_  

FLOW  

KEEP_LAST_RELIABLE_  LARGE_DATA_SLOW_  

FLOW  

STRICT_RELIABLE  

BEST_EFFORT  

KEEP_LAST_  RELIABLE  

STRICT_RELIABLE_  HIGH_THROUGHPUT  

STRICT_RELIIABLE_LOW_LATENCY  

Basic  

Durability  

PARTICIPANT_  LARGE_DATA  

PARTICIPANT_LARGE_  DATA_MONITORING  

STRICT_RELIABLE_  LARGE_DATA  

KEEP_LAST_RELIABLE_  LARGE_DATA  

AUTO_TUNING  

Large  Data  

Performance  

Large  Data  with  Flow  Control  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    11  

Page 12: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Improved  Default  Transport  Senngs  

•  MoZvaZon  –  Improve  out-­‐of-­‐box  performance  – Minimize  need  for  tuning  

•  Specific  –  Increased  MTU  size,  Send  Buffer  size  and  Receive  Buffer  size    

– Default  QoS  profile  available  to  enable  backward  compaZble  with  5.0.0  

 2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    

12  

Page 13: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Enhanced  TCP  Transport  using    I/O  CompleZon  Port  (IOCP)  

•  MoZvaZon  –  Increase  the  scalability  of  TCP  transport  by  supporZng  more  TCP  connecZons  in  Windows-­‐based  deployments  

 

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    13  

Page 14: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

I/O  CompleZon  Port  (IOCP)  

Connext  DDS  5.0   Connext    DDS  5.1  

Asynchronous  I/O  operaZon  using  IOCP  API    

Windows  server  

Windows  server  

clients  clients  

clients  

clients  

clients  clients  

clients  

clients  clients  clients  

clients  

clients  

clients  clients  

clients  

clients  clients  

clients  

clients  

clients  

clients  clients  

clients  

clients  

clients  clients  

clients  

clients  

clients  clients  

clients  

clients  

Synchronous  I/O  operaZon  using  Select  ()  API    

>1500  clients  ~  600  clients  

•  To  enable  IOCP  simply  set  the  property  socket_monitoring_kind  in  TCP  plugin  to  WINDOWS_IOCP  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    14  

Page 15: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

UDPv4  NAT  Support  

•  MoZvaZon  –  In  5.0  WAN  transport  requires  running  a  rendezvous  server  when  crossing  NAT  

– Allow  applicaZons  running  outside  the  NAT  to  conZnue  using  UDPv4  transport  without  changes    

 

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    15  

Page 16: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

DomainParZcipant  1  

UDPv4  NAT  Support  •  New  way  to  traverse  WAN  •  New  UDPv4  transport  property  

dds.transport.UDPv4.builTn.public_address  to  provide  IP  address  to  be  announced  to  other  DomainParZcipants  

UDPv4    Transport  

Dst  IP:    10.10.1.4  

Unicast  discovery  locator:    10.10.1.3:21410  Unicast  user-­‐data  locator:    10.10.1.3:21411  

DomainParZcipant  2  

192.168.1.1  

10.10.1.4  

10.10.1.3  

Port:  21411  

Address:  192.168.1.1  

NAT  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    16  

Page 17: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

RouZng  Service  Content  Filter  PropagaZon  

•  MoZvaZon  – Reduce  bandwidth  and  CPU  uZlizaZon  in  a  RouZng  Service  hierarchical  system  where  DataReaders  subscribe  to  only  a  subset  of  the  data    

– DataWriter  and  RouZng  Service  only  publish  data  that  is  subscribed  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    17  

Page 18: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

RouZng  Service  –  Content  Filter  PropagaZon  

Connext  DDS  5.1  

DataWriter  

DataWriter  

DataReader  

DataReader  

DataReader  

X=1  

X=6  

X=8  

DataWriter  

DataWriter  

1 2 3

876

1 86DataReader  

DataReader  

DataReader  

1

6

8

DR   DW  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    18  

Page 19: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Turbo  Mode  (Experimental)  

•  MoZvaZon  – When  system  condiZon  changes,  automaZcally  adjust  QoS  to  maintain  opZmal  performance  

–  Improve  performance  in  burst  traffic  scenario  •  high  throughput  at  high  sending  rate  •  low  latency  at  slow  sending  rate  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    19  

Page 20: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Auto  Throxle  (Experimental)  

•  MoZvaZon  – When  system  condiZon  changes,  automaZcally  adjust  QoS  to  maintain  opZmal  performance  

–  Improves  latency  average  and  jixer  in  high  throughput  condiZons  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    20  

Page 21: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

CodeGen  2.0  (Experimental)  •  MoZvaZon  

–  Reduce  code  generaZon  Zme  especially  when  dealing  with  large  IDL  files  and  large  number  of  IDL  files.  

–  Ease  customizaZons  and  extensions  to  code  generaZon  

•  Usability  –  Apache  Velocity  (VLT)  templates  are  used  in  place  of  XSL  

•  Performance  –  With  small  IDL  files,  performance  is  6x  faster  (server  mode)  

–  With  a  large  IDL  file  (2,000  structs)  CodeGen  2.0  is  >10x  faster  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    21  

Page 22: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Prototyper  with  LUA  (Experimental)  

XML  Senngs  

Prototyper  (“Container”)  

Lua  Engine            

DDS  

Lua    Component  

1. ##$Interface:$parameters,$inputs,$outputs$2. local$A,$B,$C$=$30,$30,$10$##$Change$the$'C'$parameter$to$to$see$various$flower$shapes$$3. local$ShapeWriter$=$CONTAINER.WRITER[3]$##$Triangles$4. $5. ##$Global$counter$(preserved$across$invocations)$$$6. if$not$count$then$count$=$0$else$count$=$count$+$1$$end$$$7. $8. local$shape$=$ShapeWriter.instance;$9. local$angle$=$count$%$360;$10. $11. shape['x']$$$$$$$$$=$120$+$(A+B)$*$math.cos(angle)$+$B$*$math.cos((A/B#C)*angle)$$$12. shape['y']$$$$$$$$$=$120$+$(A+B)$*$math.sin(angle)$+$B$*$math.sin((A/B#C)*angle)$13. $14. shape['shapesize']$=$5$15. shape['color']$=$"RED"$16. $17. ShapeWriter:write()$

$

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    22  

Page 23: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Spreadsheet  Add-­‐in  Enhancements  

•  Spreadsheet  Add-­‐in  adds  support  for  visualizing  extensible,  mutable  and  opTonal  members  

•  Added  support  for  Excel  2013  (we  now  support  2010  and  2013)  

Vehicle  

Wheeled  Vehicle  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    23  

Page 24: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Recording  Service:  Flexible  Field  SelecZon

Pre  5.1.0  …  

What  the  user  really  cares  about  What  we  store  by  default,  apart  from  user-­‐data  

25  columns  of  metadata  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    24  

Page 25: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Recording  Service:  Flexible  Field  SelecZon

2  columns  

of  metadata  

Now  (5.1.0)  …  

What  the  user  really  cares  about  What  we  also  store  in  the  DB  by  default  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    25  

Page 26: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Recording  Service:  Flexible  Field  SelecZon  

Users  can  now  select  what  SampleInfo  fields  to  store  with  their  recorded  data  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    26  

Page 27: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Recording  Service:  IntegraZon  with  X-­‐Types  

•  Recorder,  Replay  and  Converter  can  now  work  with  extensible,  mutable  types  and  opTonal  members  

Vehicle  

Wheeled  Vehicle  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    27  

Page 28: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Recording  Service:  Online  Indexing  

•  Enable  access  the  DB  while  recording  – Efficient  queries  based  on  the  source  Zmestamp  and  some  user  defined  fields  

•  New  in  5.1.0:  flexible,  user-­‐defined,  DB  indexing  while  recording  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    28  

Page 29: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Recording  Service:  Other  Features  

•  SQLite  version  upgraded  from  3.3.13  to  3.7.17  – New  DB  journal  mode:  WAL  (Write-­‐Ahead  Log)  provides  improved  concurrency  

•  New  in  5.1.0:  ability  to  specify  SQLite  pragmas  – Useful  for  fine-­‐tuning  performance  or  other  aspects,  like  concurrency  

– E.g.  page  size  on  Windows  systems  – WAL  journal  mode  for  concurrency  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    29  

Page 30: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Admin  Console  

Eclipse  RCP   DDS  

Admin  Console  Infrastructure  

RTI  Services  AdministraZon  

(5.0.0)  

Debugging  (5.1.0)  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    30  

Page 31: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Real-­‐Zme  Match  Analyses  

   

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    31  

Page 32: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Health  View  

9  condiZons  are  evaluated  to  determine  health.  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    32  

Page 33: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Topic  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    33  

Page 34: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

QoS  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    34  

Page 35: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

DDS  Data  Type  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    35  

Page 36: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

System  Log  

Combined  log  from  all  applicaZons  using  Distributed  Logger.  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    36  

Page 37: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

RouZng  Service  :  Resources  Chart  

Similar  view  for  Host  2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    

37  

Page 38: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Extended  Process  InformaZon  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    38  

Page 39: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Auto  Join  

Domains  Joined:    

6  

8  

,  6  ,  8  0  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    39  

Page 40: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Monitor  UI  

•  Auto  join  acZve  DDS  domains.  •  No  monitoring  informaZon  indicators.  

•  Displays  DataReaders  and  DataWriters  even  if  monitoring  library  is  not  enabled.  

•  System  Overview  usability  improvements  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    40  

Page 41: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Many  More  …  •  PrioriZzed  Samples  Supported  in  Java  and  C#  APIs  

–  Enable  prioriZzaZon  of  traffic  when  in  compeZZon  for  transmission  resources  

•  Ability  to  Change  Expression  in  ContentFilterTopic  –  More  flexible  for  a  subscriber  to  change  its  interest  on  the  data  contents  

•  Ability  to  Zero  Out  Padding  Bytes  in  Message  on  the  Wire  –  To  provide  bexer  security  

•  XML-­‐Based  ApplicaZon  CreaZon  is  now  GAR  –  Simplifies  development  and  programming  effort  of  RTI  Connext  applicaZon  

•  New  APIs  to  Get  ParZcipantBuilZnTopicData  of  Matched  PublicaZon  or  SubscripZon  using  PublicaZon  and  SubscripZon  Handles    –  Easier  way  to  retrieve  informaZon  about  remote  applicaZon  that  publish  

and  subscribe  data  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    41  

Page 42: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Summary  •  Connext  DDS  Professional  5.1  greatly  improves  

–  Scalability  –  Usability  –  Performance  –  Robustness  

•  Rich  set  of  Tools  •  Most  standards  compliant  DDS  middleware  in  the  market  •  Runs  on  all  mainstream  plaWorms  •  Available  NOW!  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    42  

Page 43: Connext%DDS%Professional%5.1% Overview...Builn %QoSProfiles BASELINE_ ROOT% BASELINE_ 5_0_0% BASELINE% BASELINE_ 5_1_0% GENERIC_ COMMON% GENERIC_ MONITORING% GENERIC__ CONNEXT_MICRO

Thank  You!  

2/11/14   ©  2014  REAL-­‐TIME  INNOVATIONS,  INC.    43