on ‎2019 Jan 28 2:32 PM
Hi,
We're currently on Cloud V2 with our Hybris environment.
We're trying to setup hot folder with Microsoft Azure Blob Storage. The local setup works with putting a file on a local folder which is being picked up and processed.
Followed: https://help.hybris.com/scc/pcd/6e23a26fe9c8472380f9101e8a9fe1c3.html
For some reason our file isn't picked up and getting processed. Currently we're using Microsoft Azure Storage explorer to put files on location hybris/master/hotfolder.
questions
Does anyone has a sample manifest.json configuration with the hot folder setup?
Do we need to do some extra configuration for cloud hot folder in our spring.xml file?
Thanks, Dieter
Request clarification before answering.
You have to add some properties and azure cloud extension in your project and background processing aspect like below:
...
"azurecloudhotfolder",
.....
{
"name": "backgroundProcessing",
"properties": [
{
"key": "cluster.node.groups",
"value": "integration,yHotfolderCandidate"
},
{
"key": "azure.hotfolder.storage.container.hotfolder",
"value": "master/hotfolder"
},
{
"key": "azure.hotfolder.storage.container.match.pattern",
"value": "^((?!ignore).)*$"
},
{
"key": "azure.hotfolder.storage.container.name",
"value": "hybris"
},
{
"key": "azure.hotfolder.storage.polling.fixed.rate",
"value": "30000"
},
{
"key": "azure.hotfolder.storage.delete.remote.files",
"value": "true"
},
{
"key": "azure.hotfolder.storage.account.name",
"value": "**your_account**"
}
]
},
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is more guidance here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi did you add our custom file prefic in this property "key": "cloud.hotfolder.default.mapping.file.name.pattern", "value": "^(customer|product|url_media|custom)-\\d+.*" },
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For us it's also working now. We're still having problems on creating a custom mapping. we receive the error "failed to resolve channel name"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks!
Just i had error in my match pattern, right now is working!!
I appreciate you help! Regards!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dieter
I have the same problems the files isnt picked i add the azurecoudhotfolder extension and the required parameters but is not working, have yo already made the hotfolder work?
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.