Can anyone explain briefly about the global data space in DDS? Is it like a virtual memory?? When does a global data space is required?? I know that in Unicast of UDPv4, for every dataWriter/dataReader pair one port is assigned through which the communications take place between dataWriter and dataReader ,then from where does the concept of global data space come ?
global data space in RTI's implementation of DDS
513 Views Asked by Praveen Rathode At
1
There are 1 best solutions below
Related Questions in UDP
- UDP congestion control in NS2
- Packet drops in multicast when multiple instance of listner are running
- Netty loses udp packets at the beginning of the communication
- iOS "NSLocalizedDescription=Broken pipe" Error For UDP
- lua udp not working between computers
- Issues regarding multiplayer networking: input
- Implementing VOIP over udp, what is the approach to take when the player cannot cope up with received packet's speed
- Detecting incoming port for TFTP data?
- Is Winsock error 10054 (WSAECONNRESET) "normal" with UDP to/from localhost?
- PHP UDP socket memory leak
- What is the effect of the pseudo header in UDP?
- can we open an UDP conection in javascript
- UDP sending and receiving lists
- using Visual Basic 2013 and simple tcp client/server to implement lan game
- Manually send to iperf via UDP socket? (C++)
Related Questions in PUBLISH-SUBSCRIBE
- using Message oriented middleware for communications within single web application realm
- Faye Ruby Server Side Publish on Heroku - EventMachine buffer overflow detected
- Pub/Sub Vs Observer Vs Reactive
- Adding pubsubhubbub link tag to Atom feed
- $rootScope.$broadcast in factory cannot change a value in other $scope
- Knockout component updating observable not being subscribed to by parent view model?
- Meteor show spinner on method call
- Meteor Counts in Router Level Subscription
- Meteor JS - Exception from sub id (id that does not exist)
- Is it posible to hook redis before key expired
- Redis hooking (publish-subscribe) under stress tests - performance under load
- How i can unsubscribe to a 'changefeed' in RethinkDB?
- Share profile picture change to all users in my roster
- ZeroMQ: How to send messages to a specific subscriber
- Node.js redis pubsub
Related Questions in DATA-DISTRIBUTION-SERVICE
- I'm trying to run mdpnp openice on rpi (RTI DDS)
- zeromq create messages buffer between nodes
- Why is IDL incomplete?
- Can we send Image file or Video file using Opendds?
- Could Netty be used with DDS
- OpenDDS - Create multiple topics from single IDL structure
- Getting error while running run_test.pl for an opendds example(Messenger) on linux
- Can DDS protocol be used to communicate between devices connected to different networks?How?
- OpenDDS build failure
- RTI DDS spamming my display
- Event based messaging system (zeromq, OpenDDS,..)
- Interfacing ROS2 with Ethenet/IP
- How to deserialize multiple "XCDR_AUTO" format .dat files in one folder?
- Why Wireshark is not displaying RTPS sub-messages in the 'Info' column?
- Makefile dependencies and Timestamps
Related Questions in OPENDDS
- Error while linking with statically compiled OpenDDS / ACE
- Can we send Image file or Video file using Opendds?
- OpenDDS - Create multiple topics from single IDL structure
- OpenDDS IDL Sequence type
- Getting error while running run_test.pl for an opendds example(Messenger) on linux
- What is Win32/Process.pm in @INC?
- Issues in OpenDDS Build
- Why do we need OpenDDS run_test.pl?
- DDS Java Example throws tons of warnings "JNI call made without checking exceptions"
- Serialize openDDS topic to a `std::string`
- Why is OpenDDS failing to compile?
- How to use OpenDDS 3.13 Security
- How to discover other domain hosts using rtps_discovery
- tao_idl -Gstl doesn't map std::string
- How to define a class and method in DDS idl file?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The global dataspace is an abstract concept. It is not a physical existence.
UDP and shmem are simply transports.
Where the shared dataspace might be embodied (shared memory, malloc'd memory, in buffers spread out across drivers, wherever) is a function of the implementation details, and something you can start out by ignoring, while keeping in mind that the concept is something you can use to understand where the data is maintained while it is motion.
As the system integrator, or system implementer, you only need to understand that the DDS implementation provides, to your applications, a global dataspace for the data to exist in as necessary.
The DDS implementation takes your published data and pushes it to the global dataspace. The DDS implementation takes data out of the global dataspace and hands it to your applications, based on its announced subscriptions.
How the DDS implementation chooses to present the global, shared dataspace to your application will depend on the implementation details, and will be discussed in the higher-level documentation. How it implements the "dataspace" will be in the lower-level documentation which you may never need to refer to.
rw