Skip to content
#

connector

Here are 420 public repositories matching this topic...

alanhartless
alanhartless commented Jun 18, 2015

We are currently using a setup where many sites are sharing the same source via symlinked index.php files. However, they use local image directories that we want filemanager to access and manage. For all the assets though, we are using apache alias to redirect all asset URLs since they are not local to the site's public_html. This means that filemanager's PHP scripts have a different DOCUMENT_R

danielwolbe
danielwolbe commented Sep 11, 2019

When setting the monitor.tail property, it's possible to tail/update only filenames, and not directories:

https://github.com/Landoop/stream-reactor/blob/master/kafka-connect-ftp/src/main/scala/com/datamountaineer/streamreactor/connect/ftp/source/FtpFileLister.scala#L41

So, when a support for a recursive structure is required, it can be done in a way like this:
`connect.ftp.monitor.tail=/**:

zachariahyoung
zachariahyoung commented Mar 19, 2020

getting the following error message.

ksql> CREATE STREAM CUSTOMERS_SRC WITH (KAFKA_TOPIC='asgard.public.customers', VALUE_FORMAT='AVRO'); Avro schema for message values on topic asgard.public.customers does not exist in the

kimus
kimus commented Feb 27, 2020
[[script]]
namespace = "some.Customer"
routing = true
script = """
module.exports = function(doc) {
  var meta = { type: 'customer' };
  var id = doc.userId;
  if (id) {
    meta.parent = id;
    meta.routing = id;
  }
  doc._meta_monstache = meta;
  return _.omit(doc, "userId");
}
"""
TRACE 2020/02/27 11:41:28 HTTP/1.1 400 Bad Request
Content-Type: application
joshtyler
joshtyler commented Feb 2, 2020

I've designed this connector into a PCB, I think it's quite a neat solution - thank you for designing it.

Unfortunately the SOIC clip I used was a bit flimsy, and so never made very good contact with the PCB, and before long the plastic guide pins broke.

I was wondering therefore if you had the model number of a SOIC clip that was easy to modify, and worked reliably?

reibitto
reibitto commented Apr 26, 2020

I'm looking to migrate to zio-sqs, but right now as far as I can tell there are 2 main modes of operation:

  • autoDelete=true: This is basically at most once semantics. If your handler dies or there is a hard crash, the message you were in the middle of handling is lost forever.
  • autoDelete=false: Manual mode. You have to ensure to call deleteMessage and so on properly yourself.

I think

Improve this page

Add a description, image, and links to the connector topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the connector topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.