I am running WSO2 Stream Processor 4.3.0, I have created a siddhi application and I want to deploy and run this application on a worker in production.
I ran WSO2 SP worker profile with "wso2-sp" type, in deployment.yml file.
How can I ask the worker to run my custom siddhi application?
Deploy and run custom siddhi application
526 Views Asked by Reza Ameri At
1
There are 1 best solutions below
Related Questions in WSO2
- Auto redirection in WSO2 API
- writing into file using VFS -WSO2 ESB 4.8.1
- how can I improve the response of BPS
- How to route by call method in proxy with WSO2?
- writing into file (Converting Base64 to Binary) values Using VFS and ESB 4.8.1
- How to publish wsdl when using different endpoints in proxy with WSO2?
- Importing users into a WSO2 IS User Database
- WSO2 IS - Do a Single Logout using the IdentitySAMLSSOService
- Wso2 DSS Tenant Endpoint Url not working
- How to deploy API Managers behind ELBs on AWS and preserve X-Forwarded headers?
- Is one XACML file per user a good approach?
- Changing WSO2 / Synapse to expose CXF service instead of AXIS2
- Fault Sequence ERROR_CODE property is not generating error as expected in wso2
- WSO2 ESB returning HTTP/1.1 413 Request Too Long for GET with url of 8k characters
- WSO2 MDM Connection Failer
Related Questions in SIDDHI
- How can I tell which part of the code hasn't terminated?
- How can I add a dependency on Siddhi CEP to my pom.xml file?
- how can i use wso2 siddhiQL Cache data?
- siddhi count() returns a value per event, not for a group(or window)
- Can esper/siddhi generate new stream according to the group by?
- How to describe this complex scene by cep?
- How do i separate my siddhimanager based on context?
- New string within Siddhi query expression
- wso2: cep: siddhi: how to make time windows persistent
- Select events with a maximum in a sliding window
- CEP absence of events using siddhi
- wso2 CEP 3.0.0: casting to double type
- On-Demand Query with siddhi fails
- Leak on SiddhiRuntime
- How to integrate WSO 2 Stream Processor and Tibco EMS?
Related Questions in WSO2-STREAMING-INTEGRATOR
- WSO2 API Analytics - how to invoke Abnormal request pattern on purpose
- WSO2 siddhi-gpl-execution-geo library works in java 8 but not supporting Java 18
- How to integrate WSO 2 Stream Processor and Tibco EMS?
- Kibana - The indices which match this index pattern don't contain any time fields
- Errors in Siddhi app.Different definition same as output 'define stream
- WSO2 Stream processor Integrating with mysql database is not working
- Deploy and run custom siddhi application
- WSO2 Siddhi Complex Event Processor question
- Siddhi http-sink ignore ssl certificate error
- WSO2SP as analytics for APIM and EI
- Siddhi: Add query id to results of query
- Change password in WSO2 AM-Analytics
- Database synchronisation with WSO2 SI
- WSO2 Streaming Integrator - Siddhi.io Aggregate multiple events into one event
- Dropping event at Sink 'tcp' at 'DistributionStream' as its still trying to reconnect
Related Questions in WSO2-CEP
- Add new user into Wso2 CEP into H2 database
- Handling MQTT messages in WSO2 CEP 3.1.0
- Does WSO2 CEP support the Solace Messaging System Integration?
- WSO2 products performance in real time
- WSO2 authentication certificates
- Is there any way to remove comma after "group by" in siddhi query language?
- wso2 CEP same query several times with different time window
- Can esper/siddhi generate new stream according to the group by?
- how to send the ouput of wso2cep to REST api?
- How do i separate my siddhimanager based on context?
- Exception connecting WSO2 CEP to WSO2 Message Broker
- Building event stack on WSO2
- getting an exception on running sample of wso2cep
- Can BAM and CEP monitor requests from client like Zipkin
- Deploy and run custom siddhi application
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?
You can deploy your siddhi app in two ways.
Copy your {siddhi_app_name}.siddhi file to {WSO2SP-HOME}/deployment/siddhi-files directory. Then the siddhi app will be deployed automatically.
Use Siddhi App Rest API.
Eg :
curl -X POST "https://localhost:9443/siddhi-apps" -H "accept: application/json" -H "Content-Type: text/plain" -d @TestSiddhiApp.siddhi -u admin:admin -kRefer to Stream Processor REST API Guide for more details.