I need to use Talend Open Studio with a SVN. What is the folder that I should put in the repository?

link|improve this question

45% accept rate
Please be more detailed in your question. Which folder are you talking about? The project files you want to revision using SVN? – Colum Jan 5 '11 at 14:00
Thats my question, I don't know what is the folder that i sould put in the repository. – JMira Jan 5 '11 at 14:19
Hopefully this link will help: blog.stackoverflow.com/2010/09/good-subjective-bad-subjective And check out the FAQ's above next to the search box. They can help as well. Remember, stackoverflow and other stackexchange sites are not your typical fourm help site. It's a different kind of rhythm here. – jgifford25 Jan 5 '11 at 14:24
feedback

4 Answers

Well, the "official" answer is to upgrade to Talend Integration Suite (TIS), which includes SVN integration. It goes a long way to synchronizing the activities of several developers using a shared repository.

If TIS is not an option for you, you might have some success by putting the project directory of your Talend Open Studio (TOS) under SVN control. This is the directory immediately under "workspace" that has the same name as your project. You would have to perform all SVN operations, such as commit and update, manually on this directory, for example using Tortoise (if you're on Windows). TOS might be able to use this project as if it was not under SVN. I personally haven't tried this, and would recommend using TIS instead.

link|improve this answer
feedback

I prepared the following for my team. http://www.dariopardo.com/talend-open-studio/svnintegration/ It basically involves doing what @drmirror said

link|improve this answer
feedback

I faced a similar issue an wrote a blog about it, see Putting Talend Open Studio projects under version control. Basically you should version your entire workspace.

link|improve this answer
feedback

I will explain the approach I have followed

  • The files required by TOS IDE are .items and .properties files. You can use these files for version controlling your TOS jobs as it will maintain exact state of jobs with respect to Talend IDE.
  • So whenever you are finished with some enhancement in you Talend job. Export it using "Export Items" option and put them under SVN revision. The file generated will be usually a ZIP archive file.
  • Whenever you need to revert back to a previous revision you can use the "Import Items" options

That's how I have worked with versioning of Talend jobs. Hope this helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.