8000 Request: compact multi-row upload · Issue #19 · deanhiller/databus · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Request: compact multi-row upload #19
Open
@hopcroft

Description

@hopcroft

When uploading multiple entries, you have to specify the table for every entry. For example:

{"_dataset":[
            {"_tableName":"timeSeriesExample","time":1360006292000,"value":162.6911},
            {"_tableName":"timeSeriesExample","time":1360006293000,"value":163.6911}
    ]
}

The name of the table is redundant. The message would be more efficient if the table could be specified once per upload message. Something like:

{"_tableName":"timeSeriesExample","_dataset":[
            {"time":1360006292000,"value":162.6911},
            {"time":1360006293000,"value":163.6911}
    ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0