What happens if you have 1 TB range of RAW files and creative cloud gives you just 2 or 20 GB?

Hello community,

So, I tried to group my many discs USB hard and mixed windows and laptops mac and positions work to bring together all the stuff of photography.  In its current form, I have almost 1 TB of data going back to 2000 when I started digital photography seriously.

It became difficult to store the amount of data and access obviously, as even my Macbook Pro has just 1 TB SSD as a maximum to be shared between several different things like music, video editing, work stuff and photography.

The iCloud of Apple and Google Drive offers 1 TB of storage $ 10 per month!  This is an amazing deal!  I don't think people appreciate how amazing of a price that is.  Even if you buy enough Dell servers for installation in a datacenter and same lease/finance these servers for 3 years and break down the costs down to monthly, you always can not easily get under box $ 0.035 - 45.  Pricing Apple and Google has data in a cloud which, in the case of Google, is also geographically dispersed and has at least 3 copies of the data (it's a fairly reliable design) and $10 for 1 TB per month, we talk in the price range of $0.01 per GB 1.  So price wise and reliability wise, I am convinced that my data are both safe and inexpensive in terms of overall convenience to keep up with Google and Apple at this price.

I wish Adobe would have same price... maybe they will in the future to come, but as far as I can tell, it's 2 GB or 20 GB and it will not cut it... unless someone knows how to order 1 TB of Adobe and how much it costs?

Which brings me to the next point... I think that may be the best option at this stage would be a mixed solution.  Where the data will see in iCloud Apple drive so that you can access directly to RAW files, or even something using Google Reader.  While you need to edit files, pull them into Adobe Creative Cloud applications and change them like that.

Did someone done before?  I wonder which works better in a workflow?  And what problems/things to look out for?

Thank you

Ramiel

Hi Matt,

This forum is part of the creative cloud where the suggestions & tips are collected so that they can be discussed in the course.

From now on, there has been no updates about the change of storage space. You like there a number of users who want more 100 GB so that demand should choose momentum when any other promotion of CC & storage planning.

Concerning

Stéphane

Tags: Adobe

Similar Questions

  • What happens to my sites to Muse if I cancel my subscription creative cloud?

    I see no reason why I never want to stop my subscription - but I have created a Web site for a client using Adobe Muse, and my client wants to use BusinessCatalyst to host the Web site online. I'll use one of my five credits for Web sites to do this. I want to know what will happen on the site if never terminate my subscription to creative cloud, and what I can do to assure you that the site will not disappear if never stop my subscription.

    Hi PuurYfke,

    To respond to your request, if you cancel your paid subscription creative cloud you will always have access to the level of membership, which offers 2 GB of free storage. You will have a grace period of 90 days to upload your files to your local machine and remove the files online to get your cloud storage up to 2 GB (or for additional storage to purchase separately if you choose). If you leave more than 2 GB of files in your storage cloud for more than 90 days, you may lose access to part or all of your files. Please read the FAQ and it will answer most of your questions:

    http://www.Adobe.com/in/products/creativecloud/FAQ.html

  • What happens if you do not have a phone support to capture CC?

    What happens if you do not have a phone support to capture CC? Can you still somehow use it?

    Only the supported phones could load and run an application like capture CC.

  • What happens when you enable paging in the range?

    Hi all

    Recently, I started tuning VO potentially able to return a lot of data. Explore the documentation I've read on the beach of paging:
    section http://docs.Oracle.com/CD/E16162_01/Web.1112/e16182/bcadvvo.htm#BCGHDDAD "42.1.5 scroll efficiently with large result sets using range paging"

    Section "42.1.5.3 What happens when you enable paging in the range" tells us that the thrust is enveloping the original query to produce a Top - N query like this
    The actual query produced to wrap a base query of:
    
    SELECT EMPNO, ENAME, SAL FROM EMP
    
    looks like this:
    
    SELECT * FROM (
      SELECT /*+ FIRST_ROWS */ IQ.*, ROWNUM AS Z_R_N FROM (
        SELECT EMPNO, ENAME, SAL FROM EMP
      ) IQ  WHERE ROWNUM < :0)
    WHERE Z_R_N > :1
    Oracle, told us http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_10002.htm#i2171079
    >
    Use the ORDER byclause order the rows returned by the statement. Without an order_by_clause, there is no guarantee that the same query that is run more than once will retrieve the lines in the same order.
    >

    So, it seems that we can ignore certain lines of original request?
    The example below illustrates this situation.
    SQL> 
    SQL> create table tst(
      2    id    number
      3   ,name  varchar2(100)
      4  )
      5  /
     
    Table created
    SQL> insert into tst(id,name) values(1,'Name1');
     
    1 row inserted
    SQL> insert into tst(id,name) values(2,'Name2');
     
    1 row inserted
    SQL> insert into tst(id,name) values(3,'Name3');
     
    1 row inserted
    SQL> insert into tst(id,name) values(4,'Name4');
     
    1 row inserted
    SQL> SELECT 'Page1', ID, NAME FROM (
      2    SELECT /*+ FIRST_ROWS */ IQ.*, ROWNUM AS Z_R_N FROM (
      3      SELECT ID, NAME FROM tst order by dbms_random.random
      4    ) IQ  WHERE ROWNUM < 3)
      5  WHERE Z_R_N > 0
      6  union all
      7  SELECT 'Page2', ID, NAME FROM (
      8    SELECT /*+ FIRST_ROWS */ IQ.*, ROWNUM AS Z_R_N FROM (
      9      SELECT ID, NAME FROM tst order by dbms_random.random
     10    ) IQ  WHERE ROWNUM < 5)
     11  WHERE Z_R_N > 2
     12  ;
     
    'PAGE1'                                  ID NAME
    -------------------------------- ---------- --------------------------------------------------------------------------------
    Page1                                     1 Name1
    Page1                                     2 Name2
    Page2                                     3 Name3
    Page2                                     2 Name2
    SQL> SELECT 'Page1', ID, NAME FROM (
      2    SELECT /*+ FIRST_ROWS */ IQ.*, ROWNUM AS Z_R_N FROM (
      3      SELECT ID, NAME FROM tst order by dbms_random.random
      4    ) IQ  WHERE ROWNUM < 3)
      5  WHERE Z_R_N > 0
      6  union all
      7  SELECT 'Page2', ID, NAME FROM (
      8    SELECT /*+ FIRST_ROWS */ IQ.*, ROWNUM AS Z_R_N FROM (
      9      SELECT ID, NAME FROM tst order by dbms_random.random
     10    ) IQ  WHERE ROWNUM < 5)
     11  WHERE Z_R_N > 2
     12  ;
     
    'PAGE1'                                  ID NAME
    -------------------------------- ---------- --------------------------------------------------------------------------------
    Page1                                     4 Name4
    Page1                                     2 Name2
    Page2                                     3 Name3
    Page2                                     2 Name2
    SQL> 
    In the first query, we lost name4 in second name1.

    Who can shed some light on this?
    Everything is so sad I think, and I should wait for unpredictable data? Or the internal mechanisms are not as described in the documentation and everything works well?

    Thank you very much.

    So what is your question? Without a deterministic order by, the top - N query used by the pagination of range feature will not do what you want. It can skip lines. It can reproduce lines on several pages.

    The documentation is correct; things are working properly. The other thing that should be obvious is that if the records are inserted in the game of records and committed between your look a page 1 and page 2, the specific records that appear on page 1 page vs 2 could change.

    John

  • What happens if the previous owner of ipad forgotten their password and they are not original owner so that they do not have. their system crashed and they reset their device. so they just lost $ 300? It is NOT stolen or lost.

    What happens if the previous owner of ipad forgotten their password and they are not original owner so that they do not have. their system crashed and they reset their device. so they just lost $ 300? It is NOT stolen or lost.

    It requires the Apple ID and password from the previous owner. If you don't have it and can't get it, then the device is useless to you. Return it for a refund if you can.

    Find my iPhone Activation Lock

    Check in the future first before you buy second hand: How to check for Activation lock before buying a second hand iPhone.

    Find my iPhone Activation Lock

    Find my iPhone Activation Lock - remove a device from the account of the previous owner

  • What happens when you reinstal XP OS with the cd that takes me to service pack 2 and I'm at service pack 3

    I bought TurboTax and downloaded, but can I have downloaded previously because I was unable to install due to the previous installation.  After that 2 hours of phone support with TurboTax including screenshare, they stated that the problem lies in the registry. It was damaged and I had to reinstall my OS.

    What happens when you reinstal XP OS with the cd that takes me to service pack 2 and I'm at SP3?

    I finally found my OS reinstall CD, but it's waaaay above my comfort level... what I do now.

    Frankly, if TurboTax is causing this much trouble, I would use another company as the income tax act.

    Of course, you can reinstall Windows. It's a shame, if that's the only way to solve this problem. :-(
    For later use, it is sometimes necessary to download the installation file, physically disconnect from the Internet, set up a clean boot (using msconfig startup diagnosis), reboot and THEN install the large program (and then undo the clean boot, reboot and re-connect to the Internet).
  • What happens if I have more than one computer?

    What happens if I have a PC at home and a laptop that I take with me a laptop for work, everything I need my CS5 on...? What should I do?

    Of course, I won't have to buy 3 CS5 or several times, I just want to know what my options are.

    (BTW, it's CS5 Master Collection)

    Any help, suggestions, tips, etc. would be greatly appreciated.

    Thank you

    Amanda

    Hi Amanda, this other forum thread might be useful:

    http://forums.Adobe.com/thread/719426

  • What happens if you don't update your icloud?

    wwhat happens if your photos don't upgrade to icloud?

    Do you mean that they don't or are you ask what happens if you don't let them

  • What happens when you get suspended communities of Apple support?

    can someone explain what happens when you get suspended communities of Apple support?

    Read section 5 violation of the agreement to the Convention for the use of Apple Support communities

  • What happens if you wear on the Apple Watch so loose?

    Electroisolante of the night, you guys guys haz of the indices to see what happens when you wear it on the Apple Watch tight or loose? Please give me the thing to see what is happening

    Ok?

    Hello

    Apple recommends port Apple Watch comfortably on top of your wrist, neither too loose nor too tight and with room for your skin to breathe.

    If you wear too vaguely Apple Watch, the watch can not stay in place, sensors maybe isn't able to perform more efficiently and the group can cause rubbing. For example: with wrist detection enabled, your watch can block several times while still on your wrist, because of the watch to lose contact with your skin and believing wrongly that he had been removed from your wrist. Haptic (cuts wrist) may also be less visible. The heart sensor performance may also be affected.

    Wear the watch too tight can cause a skin irritation or discomfort.

    More information:

    Port Apple Watch - Apple Support

  • What happens if you use your computer, updatesare being downloaded, and you disconnect from the internet?

    What happens if you use your computer, updatesare being downloaded, and you disconnect from the internet?

    Nothing happens.  The download is incomplete and the updates are not installed.  The next time you go on the site to update or the next time that your automatic updates are are that the updates will be downloaded again.

    John

  • What happens when you restore a backup of a Bitlocker encrypted drive?

    What happens when you restore a backup of Windows (disk image) made from a Bitlocker encrypted drive?

    I use Bitlocker on the drive of my BONES and my data disks.  It will be a complete restoration to its original state encryped or something else?

    I use the TPM module, but the USB key with the key.  Thanks for your time.  HAL

    The answer to your questions is in the following article: http://blogs.technet.com/filecab/archive/2008/04/29/complete-pc-backup-vista-and-vista-sp1-windows-server-backup-longhorn-server-and-bitlocker-faq.aspx.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • DLL Unarc.DLL and important ISDone.DLL files are and what happens if you remove/replace them?

    Hello, I would like to know are the DLL files Unarc.DLL and ISDone.DLL important and what happens if you remove/replace them? Thank you.

    Yes, they are important. Do not delete their companion.

  • If you buy 750 images per month plan, all the images roll? What happens if you return to the 10 plan pictures the next month - all images would return then?

    If you buy 750 images per month plan, all the images roll? What happens if you return to the 10 plan pictures the next month - all images would return then?

    Hello

    Kindly go through the terms for Stock:

    Stock Licensing & conditions FAQ: where can I find the terms and the license information for Adobe Stock?

    I hope this information is useful!

  • good night, is that what happens when you open cloud creative design I check your email and get the following email (&lt; deleted by the moderator &gt;) and let my id or enter gives me more options

    good night, is that what happens when you open cloud creative design I check your email and get the following email (< deleted by the moderator >) and let my id or enter gives me more options

    Hello

    Follow please: address error to connect to Creative Cloud Desktop, Email how to pass my e-mail? and CC has a fake email, can not change

    Kind regards

    Sheena

Maybe you are looking for