Git Product home page Git Product logo

camel-mongodb's People

Contributors

raulk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

camel-mongodb's Issues

Problems with MongoDbBasicConverters -> fromBasicDBObjectToMap

This type converter needs to return a "real" java.util.Map?

From:

@Converter
    public static Map<String, Object> fromBasicDBObjectToMap(BasicDBObject basicDbObject) {
        return basicDbObject;
    }

To:

@Converter
    public static Map<String, Object> fromBasicDBObjectToMap(BasicDBObject basicDbObject) {
        return basicDbObject.toMap();
    }

This way, wee can convert mongodb response body, directly to xml, o send generated Map directly to a relational database using spring simple jdbc insert, etc...

More, we can use simple language like: ${body[_id]}

What do you think @raulk ?

Or maybe i'm doing things the wrong way :(

Thanks.

inserting a List causes a TypeConversionException

in MongoDbProducer.doInsert, there is this line:
Object insert = exchange.getIn().getBody(DBObject.class);
that throws exception instead of silently outputting null.
The body is of type ArrayList -- so the call exchange.getIn().getBody(List.class) would be successful, but it never gets there.

Never persists the tail-tracking to store

In MongoDbTailingProcess.java there is:
// the loop finished, persist the lastValue just in case we are shutting down
// TODO: perhaps add a functionality to persist every N records
tailTracking.persistToStore();
}

The problem here is that this code is never reached if I ctrl-c my program, there is no time that the camelTailTracking is persisted to store.

I had to place:
tailTracking.persistToStore();

inside the main while loop inside MongoDBTailingProcess.java

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.