So I just finished performing an ETL on a remote database when I realized - 
I didn't have to specify a username or password for this ETL to run. 
However when I try to access the database I do need to have a 
username/password or else the interface will have issues. Is there 
somewhere special that I need to configure that OrientDB should be 
requesting credentials by default?

The below config (masked obviously) worked on several instances.

{
    "source": { "file": { "path": "localCSVFile.csv"} },
    "extractor": { "row": {} },
    "transformers":[
        {"csv": {} },
        {"vertex": {"class": "Stuff"}}
    ],
    "loader": {
        "orientdb": {
            "dbURL": "remote:somedatabaseURL",
            "dbType": "graph",
            "classes": [
                {"name": "Stuff", "extends": "V"}
            ],
            "indexes": [
                {"class":"Stuff", "fields":["merchantId:integer"], 
"type":"UNIQUE"}
            ]
        }
    }
}

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to