<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Persistent data store in Software Defined Networking</title>
    <link>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6597280#M1453</link>
    <description>Hi Sdnindia,&lt;BR /&gt;&lt;BR /&gt;Any chance you can provide a small demo project for connecting to a postgresql db?&lt;BR /&gt;&lt;BR /&gt;Or point us to one?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;James</description>
    <pubDate>Mon, 01 Sep 2014 09:40:15 GMT</pubDate>
    <dc:creator>--jd--</dc:creator>
    <dc:date>2014-09-01T09:40:15Z</dc:date>
    <item>
      <title>Persistent data store</title>
      <link>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6476736#M1448</link>
      <description>&lt;P&gt;While writing a native application to the SDN controller, we got into a situation where we need to store many entries which needs to be persistent across each instance of the controller, but shouldn't be distributed and replicated across the teams controllers. Moreover, the data itself is absolutly relational and the nosql structure of Cassandra doesn't fit for our case. So we thought maybe we could store our data streight to the underline Postgresql where the controller store it's alerts and internal data.&lt;/P&gt;&lt;P&gt;My question is this: is there an API which make it possible to create a table in the postgresql sdndb schema and store the data there?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Itamar,&lt;/P&gt;&lt;P&gt;Guardicore&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2014 09:04:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6476736#M1448</guid>
      <dc:creator>ItamarTal</dc:creator>
      <dc:date>2014-05-15T09:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Persistent data store</title>
      <link>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6505426#M1449</link>
      <description>&lt;P&gt;Hello Itamar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use the &amp;nbsp;Package com.hp.util.persistence for the data operations , but there is no API to create a table in the postgresql &amp;nbsp;sdndb schema and store the info, &amp;nbsp;you can also use other remote database and access it from your application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;HP SDN Team&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2014 16:52:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6505426#M1449</guid>
      <dc:creator>sdnindia</dc:creator>
      <dc:date>2014-06-10T16:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Persistent data store</title>
      <link>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6509908#M1450</link>
      <description>&lt;P&gt;Hello Itamar,&lt;BR /&gt;&lt;BR /&gt;Doing a follow up to check if you need any further assistance with respect to the query posted.&lt;BR /&gt;Please do let us know&amp;nbsp; if your problem is solved.&lt;BR /&gt;&lt;BR /&gt;If you have more questions on the same topic please do reply on the same thread or open a new post if new topic.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;HP SDN Team&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2014 04:30:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6509908#M1450</guid>
      <dc:creator>sdnindia</dc:creator>
      <dc:date>2014-06-16T04:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Persistent data store</title>
      <link>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6515932#M1451</link>
      <description>&lt;P&gt;Hello Itamar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There’s no direct API to persist on Postgres DB. According to flare standards the customer has to implement three new bundles: DAO-API, DAO-MODEL and DAO itself.&lt;/P&gt;&lt;P&gt;In the DAO-MODEL he has to create all JPA-annotated classes, that will be his tables and the hibernate xml configuration. In the DAO-API he has to define some persistence Service interface that will be exposed to the business layer of the application and the DAO, extending AbstractDao from Flare, with all the code to convert Objects from/to&lt;/P&gt;&lt;P&gt;Relational DB (that he has to write by himself), implement query api’s and also implement the API’s he has defined in the DAO-API bundle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;HP SDN Team&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2014 07:46:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6515932#M1451</guid>
      <dc:creator>sdnindia</dc:creator>
      <dc:date>2014-06-20T07:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Persistent data store</title>
      <link>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6525472#M1452</link>
      <description>&lt;P&gt;Hello Itamar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Doing a follow up to check if you need any further assistance with respect to the query posted.&lt;/P&gt;&lt;P&gt;Please do let us know&amp;nbsp; if your problem is solved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have more questions on the same topic please do reply on the same thread or open a new post if new topic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;HP SDN Team&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2014 17:50:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6525472#M1452</guid>
      <dc:creator>sdnindia</dc:creator>
      <dc:date>2014-06-30T17:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Persistent data store</title>
      <link>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6597280#M1453</link>
      <description>Hi Sdnindia,&lt;BR /&gt;&lt;BR /&gt;Any chance you can provide a small demo project for connecting to a postgresql db?&lt;BR /&gt;&lt;BR /&gt;Or point us to one?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;James</description>
      <pubDate>Mon, 01 Sep 2014 09:40:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6597280#M1453</guid>
      <dc:creator>--jd--</dc:creator>
      <dc:date>2014-09-01T09:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Persistent data store</title>
      <link>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6604742#M1454</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.hpe.com/t5/user/viewprofilepage/user-id/1449823"&gt;@sdnindia&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;Hello Itamar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There’s no direct API to persist on Postgres DB. According to flare standards the customer has to implement three new bundles: DAO-API, DAO-MODEL and DAO itself.&lt;/P&gt;&lt;P&gt;In the DAO-MODEL he has to create all JPA-annotated classes, that will be his tables and the hibernate xml configuration. In the DAO-API he has to define some persistence Service interface that will be exposed to the business layer of the application and the DAO, extending AbstractDao from Flare, with all the code to convert Objects from/to&lt;/P&gt;&lt;P&gt;Relational DB (that he has to write by himself), implement query api’s and also implement the API’s he has defined in the DAO-API bundle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;HP SDN Team&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi HP SDN Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I generated "persistence" bundles with tool from SDK 2.3.5. The implementation follows patterns as you mentioned, but the app installation failed. Details are in &lt;A target="_blank" href="https://community.hpe.com/t5/SDN-Development/app-deployment-unable-to-satisfy-bundle-dependencies/td-p/6603286"&gt;this post&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will highly appreciate any help.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lukas&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2014 07:34:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/persistent-data-store/m-p/6604742#M1454</guid>
      <dc:creator>TurboLuk</dc:creator>
      <dc:date>2014-09-08T07:34:30Z</dc:date>
    </item>
  </channel>
</rss>

