n8n Template Scraper avatar
n8n Template Scraper

Pricing

$5.00 / 1,000 results

Go to Store
n8n Template Scraper

n8n Template Scraper

Developed by

Louis Deconinck

Louis Deconinck

Maintained by Community

Unlock the power of N8N automation with this comprehensive template scraper. Get detailed insights into workflow patterns, usage statistics, and automation configurations. Perfect for developers, automation specialists, and businesses looking to optimize their workflow processes.

4.3 (4)

Pricing

$5.00 / 1,000 results

8

Total users

95

Monthly users

47

Runs succeeded

99%

Issue response

0.49 hours

Last modified

3 months ago

TO

n8n template crawler

Closed

TonyMF opened this issue
8 days ago

Hi; I used the n8n template crawler and would like to send the data to my pinecone. It says it was successful but nothing changed in my database.

louisdeconinck avatar

Hi Tony, that's weird. Can you please verify that you followed all steps outlined here: https://apify.com/apify/pinecone-integration?fpr=7p4wu and here https://docs.apify.com/platform/integrations/pinecone?fpr=7p4wu

The Pinecone integration shows "success", that means that the connection happened. So the integration should work. It's important to know that you explicitly have to tell the integration which dataset to pull from (datasetId), which fields in that dataset to embed (datasetFields) and if you’re doing deltas, which field(s) to use as a unique key (dataUpdatePrimaryDatasetFields). If any of those are missing (or misspelled), it will happily run through all its steps, discover “oh, there’s nothing here,” and exit with zero vectors written (but still show “Success!”).

Can you verify that you have those 3 elements set correctly?

TO

TonyMF

8 days ago

If I send you the playload of the executed integration, you can certainly see what the settings were. Can you then tell me what I need to change about it? I'll just delete the apiKeys. { "chunkOverlap": 100, "chunkSize": 1000, "dataUpdatesPrimaryDatasetFields": [ "url" ], "dataUpdatesStrategy": "deltaUpdates", "datasetFields": [ "text" ], "deleteExpiredObjects": true, "deltaUpdatesPrimaryDatasetFields": [ "url" ], "embeddingsApiKey": ", "embeddingsProvider": "OpenAI", "enableDeltaUpdates": true, "performChunking": true, "pineconeApiKey": "pineconeIndexName": "n8ndocs", "usePineconeIdPrefix": false, "payload": { "userId": "{{userId}}", "createdAt": "{{createdAt}}", "eventType": "{{eventType}}", "eventData": "{{eventData}}", "resource": "{{resource}}" } }

louisdeconinck avatar

Here's the corrected payload:

{
"pineconeApiKey": "<YOUR_PINECONE_API_KEY>",
"pineconeIndexName": "n8ndocs",
"datasetId": "{{DEFAULT_DATASET_ID}}",
"datasetFields": ["text"],
"enableDeltaUpdates": true,
"deltaUpdatesPrimaryDatasetFields": ["url"],
"deleteExpiredObjects": true,
"expiredObjectDeletionPeriodDays": 30,
"embeddingsApiKey": "<YOUR_OPENAI_API_KEY>",
"embeddingsProvider": "OpenAI",
"performChunking": true,
"chunkSize": 1000,
"chunkOverlap": 100,
"usePineconeIdPrefix": false
}

What changed?

  • Added "datasetId"
  • You misspelled "deltaUpdatesPrimaryDatasetFields"
  • Added the optional field "expiredObjectDeletionPeriodDays" if you want automatic pruning of old vectors

Can you try this and see if it works?

TO

TonyMF

8 days ago

Should I add this to the completed playload?

louisdeconinck avatar

Yes, you should add this to the completed payload.

TO

TonyMF

8 days ago

Pinecone and OpenAi Api Key is uptodate but Nothing happens.

louisdeconinck avatar

Weird. I am not a Pinecone expert, so at this point I also don't know what's going on. I would suggest reaching out to Apify themselves or Pinecone support on what's going wrong. You can open an issue like this one on the Pinecone integration actor. This n8n template scraper works and gets the correct results. The problem lies with the Pinecone integration.