I'm working on IoT project where I receive datastream in CoAP protocol. I want to process the data in Heron by doing some transformations on top of it. Is it possible to integrate CoAP protocol objects to heron?
CoAP support for twitter heron
140 Views Asked by tourist At
1
There are 1 best solutions below
Related Questions in APACHE-STORM
- ERROR: org.apache.hadoop.fs.UnsupportedFileSystemException: No FileSystem for scheme "maprfs"
- Use rack aware policy for kafka in apache storm
- Apache storm + Kafka Spout
- Getting classCastException when upgrade from strom/zookeepr 2.5/3.8.0 to 2.6/3.9.1
- Does SGX or Gramine support mmap files?
- Apache Storm: Get Blob download exception in Nimbus log
- Apache Storm: can't receive tuples from multiple bolts
- How to make apache storm as FIPS (Federal Information Processing Standard ) compliant
- one bolt recive from 2 others in streamparse python
- How to deploy a topology on Apache Storm Nimbus deployed on AWS ECS
- How to store custom metatags in elasticsearch index from a website using stormcrawler
- conf/storm.yaml is not populated with values coming from config map
- How to process late tuples from BaseWindowedBolt?
- Unable to Start this Storm Project
- Handing skewed processing time of events in a streaming application
Related Questions in IOT
- thingsboard: reformat shared attribute JSON before publishing via MQTT
- Not able to recieve message sent from mobile to GSM SIM900 but other functionalities working
- Python: Cannot Run Linux Terminal Commands With Scripts
- How to run Zephyr Echo Client-Server sample using nrf52840dk & nrf52840dongle?
- Communication between the Neo6m GPS and the Esp32
- Turn phone with an IR blaster into wifi enabled IR hub
- Unable to start the Coap server in a Spring boot application
- How to create a photo gallery widget/database?
- AWS IoT Self-managed certificate signing with CreateCertificateFromCsr API
- Azure IOT central command/NodeRed
- PyFirmata servo control issue (Arduino with Python)
- How to connect bluetooth devices using flutter blue plus?
- Does CdiCenteroutput support in lipari-mid & kiska - mid (55ppm)
- "Blynk Connection Issue with Arduino and ESP8266 in IoT Project"
- How to control Tuya API device with an HTML request
Related Questions in COAP
- Unable to start the Coap server in a Spring boot application
- Reading multiple blocks from a CoAP block-wise transfer on SIM7080G modem
- Increase CoAP receive package size beyond 579 bytes on SIM7080G modem
- multiple query parameters not being parsed
- How to deploy a CoAP server written using libcoap in c/c++ on k8's behind a load balancer
- Need a CoAP lib for Ionic Apps
- Azure Applicaiton Insights not capturing requests made on @component class
- How to connect Python COAP + DTLS client to a Eclipse Californium's CoAP Secure Server?
- I want to integrate CoAP with the Azure with IoT hub. Below are the available services a) Event hub b) function appsc) Cumulocity
- Is it possible to use the Zephr coAP API in conjunktion with openThread?
- IOS - NativeScript - CoAp - Cannot connect to Link-local ipV6 address - even i have permission
- CoAP GET data read using Californium get or discover method is inconsistent
- How to get the name of the uri_path that Coap's client is writing to in Resource class?
- What is a CoAP Resources Directory?
- is Eclipse/Californium CoAP observer much slower than Aiocoap observer?
Related Questions in HERON
- Using heron library, proxy.cgi is responding incorrectly, activated via python on windows
- Converting a Storm 1 Kafka Topology to Heron, have a few questions
- Dhalion running on Heron by default?
- How to access Backpressure Metrics in Heron (Json File)
- Failed to get scheduler location from state manager Heron Tutorial
- Heron TumblingWindowBolt based on count not seconds
- Sync severals spouts and bolt in Heron
- Get access to local folder in Heron
- Messages dropping between spout and bolt
- How to fix the NullPointerException happened in KafkaSpout running on Heron?
- How to set resource requirements of components for a Storm topology running in Heron?
- Kafka Integration in Apache Heron
- The exception java.lang.VerifyError: Bad type on operand stack happend in Heron
- How to config the heron-core file in Heron 0.17.5 version?
- How to monitor the throughput of Heron Cluster
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 # Hahtags
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?
I think it is not very important from the CoAP endpoint's view where do you put the received data.
Use this link as a initial point: http://coap.technology/impls.html
There you can find brief descriptions for implementations for several languages/platforms.
Unfortunately, I am not familiar with Twitter Heron and don't know which language is best for implementing a Heron data provider.
If such language is Java or Heron is language-agnostic (say, has a REST API as a primary interface) - I'd consider the https://eclipse.org/californium/ as a very mature implementation. That way (sure in 5000ft view as I don't know the details) you could write an app which uses Californium and CoapHandlers might push data to Heron.