Inserting datastore projected queries in Postgresql using Apache Beam











up vote
0
down vote

favorite












I am trying to copy datastore entities to a PostgreSQL instance. As I don't need each fields, I performed projections following this snippet. I build the following query:



public static Query DatastoreQuery() {
Query.Builder query = Query.newBuilder();

// Add filter
query.addKindBuilder().setName("FOO");
query.setFilter(makeFilter("bar", PropertyFilter.Operator.EQUAL, makeValue("fuz")));

// Add projections
query.addProjection(Projection.newBuilder().setProperty(PropertyReference.newBuilder().setName("createdAt")));

return query.build();
}


This query is then used in the pipeline:



pipeline.apply(DatastoreIO.v1().read().withProjectId(options.getProjectId())
.withQuery(ExtractDatastore.DatastoreQuery()));


Following Unable to addProjection to relation field in envers query, I am expecting to get a Map<String, Object>. I would like to follow Apache Beam documentation to insert the entities in PostgreSQL, using a code similar to:



.apply(JdbcIO.<Map<String, Object>>write()      
.withDataSourceConfiguration(JdbcIO.DataSourceConfiguration.create(
"com.google.cloud.sql.postgres",
jdbcUrl
)
.withUsername(username)
.withPassword(password))
.withQuery("<INSERT QUERY>")
.withPreparedStatementSetter(<this is what needs to be filled>));


As I have found no examples, here are my questions are the following:



1) How to handle the elements from the query ? In the example of my projection, how do I get access to createdAt which is a timestamp ? In python, I did it with : value.timestamp_value.ToDatetime(). Is there an equivalent in Java ?



2) Are the entities really under the format <Map<String, Object>> as described in the SO issue ?



2) Can one apply JdbcIO.write() to Map<String, Object> or does it require to be under the <KV<KeyType, ValueType>> format as described in the small snippet of the documentation ?



I am grateful to take any inputs on this topic.










share|improve this question


























    up vote
    0
    down vote

    favorite












    I am trying to copy datastore entities to a PostgreSQL instance. As I don't need each fields, I performed projections following this snippet. I build the following query:



    public static Query DatastoreQuery() {
    Query.Builder query = Query.newBuilder();

    // Add filter
    query.addKindBuilder().setName("FOO");
    query.setFilter(makeFilter("bar", PropertyFilter.Operator.EQUAL, makeValue("fuz")));

    // Add projections
    query.addProjection(Projection.newBuilder().setProperty(PropertyReference.newBuilder().setName("createdAt")));

    return query.build();
    }


    This query is then used in the pipeline:



    pipeline.apply(DatastoreIO.v1().read().withProjectId(options.getProjectId())
    .withQuery(ExtractDatastore.DatastoreQuery()));


    Following Unable to addProjection to relation field in envers query, I am expecting to get a Map<String, Object>. I would like to follow Apache Beam documentation to insert the entities in PostgreSQL, using a code similar to:



    .apply(JdbcIO.<Map<String, Object>>write()      
    .withDataSourceConfiguration(JdbcIO.DataSourceConfiguration.create(
    "com.google.cloud.sql.postgres",
    jdbcUrl
    )
    .withUsername(username)
    .withPassword(password))
    .withQuery("<INSERT QUERY>")
    .withPreparedStatementSetter(<this is what needs to be filled>));


    As I have found no examples, here are my questions are the following:



    1) How to handle the elements from the query ? In the example of my projection, how do I get access to createdAt which is a timestamp ? In python, I did it with : value.timestamp_value.ToDatetime(). Is there an equivalent in Java ?



    2) Are the entities really under the format <Map<String, Object>> as described in the SO issue ?



    2) Can one apply JdbcIO.write() to Map<String, Object> or does it require to be under the <KV<KeyType, ValueType>> format as described in the small snippet of the documentation ?



    I am grateful to take any inputs on this topic.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am trying to copy datastore entities to a PostgreSQL instance. As I don't need each fields, I performed projections following this snippet. I build the following query:



      public static Query DatastoreQuery() {
      Query.Builder query = Query.newBuilder();

      // Add filter
      query.addKindBuilder().setName("FOO");
      query.setFilter(makeFilter("bar", PropertyFilter.Operator.EQUAL, makeValue("fuz")));

      // Add projections
      query.addProjection(Projection.newBuilder().setProperty(PropertyReference.newBuilder().setName("createdAt")));

      return query.build();
      }


      This query is then used in the pipeline:



      pipeline.apply(DatastoreIO.v1().read().withProjectId(options.getProjectId())
      .withQuery(ExtractDatastore.DatastoreQuery()));


      Following Unable to addProjection to relation field in envers query, I am expecting to get a Map<String, Object>. I would like to follow Apache Beam documentation to insert the entities in PostgreSQL, using a code similar to:



      .apply(JdbcIO.<Map<String, Object>>write()      
      .withDataSourceConfiguration(JdbcIO.DataSourceConfiguration.create(
      "com.google.cloud.sql.postgres",
      jdbcUrl
      )
      .withUsername(username)
      .withPassword(password))
      .withQuery("<INSERT QUERY>")
      .withPreparedStatementSetter(<this is what needs to be filled>));


      As I have found no examples, here are my questions are the following:



      1) How to handle the elements from the query ? In the example of my projection, how do I get access to createdAt which is a timestamp ? In python, I did it with : value.timestamp_value.ToDatetime(). Is there an equivalent in Java ?



      2) Are the entities really under the format <Map<String, Object>> as described in the SO issue ?



      2) Can one apply JdbcIO.write() to Map<String, Object> or does it require to be under the <KV<KeyType, ValueType>> format as described in the small snippet of the documentation ?



      I am grateful to take any inputs on this topic.










      share|improve this question













      I am trying to copy datastore entities to a PostgreSQL instance. As I don't need each fields, I performed projections following this snippet. I build the following query:



      public static Query DatastoreQuery() {
      Query.Builder query = Query.newBuilder();

      // Add filter
      query.addKindBuilder().setName("FOO");
      query.setFilter(makeFilter("bar", PropertyFilter.Operator.EQUAL, makeValue("fuz")));

      // Add projections
      query.addProjection(Projection.newBuilder().setProperty(PropertyReference.newBuilder().setName("createdAt")));

      return query.build();
      }


      This query is then used in the pipeline:



      pipeline.apply(DatastoreIO.v1().read().withProjectId(options.getProjectId())
      .withQuery(ExtractDatastore.DatastoreQuery()));


      Following Unable to addProjection to relation field in envers query, I am expecting to get a Map<String, Object>. I would like to follow Apache Beam documentation to insert the entities in PostgreSQL, using a code similar to:



      .apply(JdbcIO.<Map<String, Object>>write()      
      .withDataSourceConfiguration(JdbcIO.DataSourceConfiguration.create(
      "com.google.cloud.sql.postgres",
      jdbcUrl
      )
      .withUsername(username)
      .withPassword(password))
      .withQuery("<INSERT QUERY>")
      .withPreparedStatementSetter(<this is what needs to be filled>));


      As I have found no examples, here are my questions are the following:



      1) How to handle the elements from the query ? In the example of my projection, how do I get access to createdAt which is a timestamp ? In python, I did it with : value.timestamp_value.ToDatetime(). Is there an equivalent in Java ?



      2) Are the entities really under the format <Map<String, Object>> as described in the SO issue ?



      2) Can one apply JdbcIO.write() to Map<String, Object> or does it require to be under the <KV<KeyType, ValueType>> format as described in the small snippet of the documentation ?



      I am grateful to take any inputs on this topic.







      java google-cloud-platform google-cloud-dataflow apache-beam






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 at 16:20









      Dr Mouse

      1191212




      1191212





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53266180%2finserting-datastore-projected-queries-in-postgresql-using-apache-beam%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53266180%2finserting-datastore-projected-queries-in-postgresql-using-apache-beam%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?